projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3cb20f4
)
(win32_wnd_proc): Disable setting of Vquit_flag
author
Geoff Voelker
<voelker@cs.washington.edu>
Fri, 10 May 1996 23:07:10 +0000
(23:07 +0000)
committer
Geoff Voelker
<voelker@cs.washington.edu>
Fri, 10 May 1996 23:07:10 +0000
(23:07 +0000)
at this o
\b
\b
\b
\b
point
src/w32fns.c
patch
|
blob
|
history
diff --git
a/src/w32fns.c
b/src/w32fns.c
index f34c215227fb71f4b52f8025504b108c1445be2c..7655f16ffe1e333824a7ac8dea9fa67a47c0ea8c 100644
(file)
--- a/
src/w32fns.c
+++ b/
src/w32fns.c
@@
-2965,6
+2965,7
@@
win32_wnd_proc (hwnd, msg, wParam, lParam)
enter_crit ();
my_post_msg (&wmsg, hwnd, msg, wParam, lParam);
+#if 0
/* Detect quit_char and set quit-flag directly. Note that we dow
this *after* posting the message to ensure the main thread will
be woken up if blocked in sys_select(). */
@@
-2976,6
+2977,8
@@
win32_wnd_proc (hwnd, msg, wParam, lParam)
if (c == quit_char)
Vquit_flag = Qt;
}
+#endif
+
leave_crit ();
break;